home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / PUTCUR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  184 b   |  12 lines

  1. #include <dos.h>
  2.  
  3. void PutCursor( int Top, int Bottom )
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x0100;
  8.     reg.h.ch = Bottom & 15;
  9.     reg.h.cl = Top    & 15;
  10.     int86( 0x10, ®, ® );
  11. }
  12.